home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / 123win.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-07-17  |  1KB  |  75 lines

  1. @echo off
  2. cls
  3.  
  4. :START
  5. driveok -d C: 720000
  6. if errorlevel 2 goto BADDRIVE
  7. if errorlevel 1 goto BADPARAM
  8.  
  9. @echo off
  10.  
  11. echo Do you want to . . . 
  12. echo  
  13. echo     1. install the demo on hard drive C:\
  14. echo     2. play the demo from diskette
  15. echo  
  16. driveok -k 12 Choose 1 or 2 . . . 
  17.  
  18. echo  
  19. echo  
  20.  
  21. if errorlevel 2 goto NO
  22. if errorlevel 1 goto BADPARAM
  23.  
  24. driveok -p C:\123demo
  25. if errorlevel 2 goto NEWDIR
  26. if errorlevel 1 goto BADPARAM
  27. if errorlevel 0 goto COPYFILES
  28.  
  29. :NEWDIR
  30.  MD c:\123demo
  31.  goto COPYFILES
  32.  
  33. :BADPARAM
  34.  Echo Bad command in batch file. 
  35.  goto endxx
  36.  
  37. :NO
  38. DEMO
  39.  
  40. :BADDRIVE
  41.  echo     **************************************************
  42.  echo       Drive C: is not available                 
  43.  echo       OR                                        
  44.  echo       There is not enough memory free!          
  45.  echo     **************************************************
  46.  echo       Demo requires at least 720K of hard disk space
  47.  echo       for complete installation.
  48.  echo     **************************************************
  49.  goto ENDxx
  50.  
  51. :COPYFILES
  52.  echo  
  53.  echo Installing demo now.  Please wait.
  54.  copy *.* c:\123demo >nul
  55.  echo  
  56.  echo  
  57.  c:
  58.  cd\123demo
  59.  driveok -k yn Do you want to view the demo now (Y/N)? . . . 
  60.  echo  
  61.  
  62.  if errorlevel 2 goto END
  63.  if errorlevel 1 goto BADPARAM
  64.  
  65. DEMO
  66.  
  67. :END
  68.  echo  
  69.  echo  
  70.  echo When you want to view the demo type: DEMO
  71.  echo  
  72.  echo  
  73.  
  74. :ENDxx
  75.